home *** CD-ROM | disk | FTP | other *** search
- on mouseEnter me
- if the text of field "url" <> EMPTY then
- cursor(280)
- else
- nothing()
- end if
- end
-
- on mouseLeave me
- cursor(-1)
- end
-
- on mouseDown me
- if the text of field "url" <> EMPTY then
- if the text of field "browserSelect" = EMPTY then
- alert("You have not selected your browser yet. You can do this now.")
- go("config", "net")
- else
- open(the text of field "url", the text of field "browserSelect")
- end if
- else
- nothing()
- end if
- end
-